home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_01
/
1101094b
< prev
next >
Wrap
Text File
|
1995-11-01
|
260b
|
16 lines
// fa2.cpp - a dynamic array of float
#include "fa2.h"
#include <assert.h>
// other float_array member function definitions ...
float &float_array::operator[](size_t i) const
{
assert(i < len);
return array[i];
}
----------